@charset "utf-8";
/* CSS Document */
ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: lemonchiffon;
}

li{
	float: right;
}

li a{
	display: block;
	color: black;
	padding: 15px 30px;
	text-decoration: none;
		
}

footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%; 
	background-color: antiquewhite;
	text-align: center;
	
		
}

/* Style for the text */
.text {
  font-size: 24px;
  color: black; /* Original color */
  transition: color 0.3s ease; /* Smooth transition effect */
}

/* Hover effect */
.text:hover {
  color: #FF5733; /* New color on hover */
}

body {
    font-family: 'Verdana', sans-serif;
}
h1 {
    font-family: 'Times New Roman', serif;
}

.dark-mode {
	background-color: grey;
	color: black;
}